123456/V5 2324/10.3.php

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <?php $fruitschaal = array ('rood' => 'appel', 'geel' => 'banaan', 'groen' => 'peer', 'oranje' => 'sinaasappel'); //zelfde als $fruitschaal['rood']="appel"; $fruitschaal['geel']="banaan"; $fruitschaal['groen']="peer"; $fruitschaal['oranje']="sinaasappel"; asort($fruitschaal); foreach($fruitschaal as $kleur => $fruit){ echo "<div>$fruit heeft de kleur $kleur</div>"; } ?> </body> </html>

Resultaat

Made by Thijs Aarnoudse